Re: installing modules problem

2018-11-08 Thread Siva Sukumar Reddy
Also make sure that the Pythonpath contains the folder where the modules are installed in your machine. - site packages folder. On Thu 8 Nov, 2018, 16:28 Thomas Jollans On 2018-11-08 06:04, Ian K. wrote: > > Hello, > > > > My name is Ian Kilty and I have been having trouble with pip. I have pip >

Re: installing modules problem

2018-11-08 Thread Thomas Jollans
On 2018-11-08 06:04, Ian K. wrote: > Hello, > > My name is Ian Kilty and I have been having trouble with pip. I have pip > installed, and I have tried to install modules they say they are installed > in cmd, but when I go into python and import the module, it can't find it. > I hope there is a sim

Re: installing modules in Enthought Python

2012-05-30 Thread Chuck
On May 30, 10:57 am, David Fanning wrote: > Chuck writes: > > > I just downloaded Enthought Python, free version.  I wanted all the > > included packages, but I can't seem to find the correct directory to > > install new Python modules.  Does anybody have an idea?  I am trying > > to add Universal

Re: installing modules in Enthought Python

2012-05-30 Thread Robert Kern
On 5/30/12 4:05 PM, Chuck wrote: I just downloaded Enthought Python, free version. I wanted all the included packages, but I can't seem to find the correct directory to install new Python modules. Does anybody have an idea? I am trying to add Universal Feed Parser to Enthought. I have tried C

Re: installing modules in Enthought Python

2012-05-30 Thread Terry Reedy
On 5/30/2012 11:05 AM, Chuck wrote: I just downloaded Enthought Python, free version. I wanted all the included packages, but I can't seem to find the correct directory to install new Python modules. Does anybody have an idea? I am trying to add Universal Feed Parser to Enthought. I have trie

Re: installing modules in Enthought Python

2012-05-30 Thread David Fanning
Chuck writes: > > I just downloaded Enthought Python, free version. I wanted all the > included packages, but I can't seem to find the correct directory to > install new Python modules. Does anybody have an idea? I am trying > to add Universal Feed Parser to Enthought. I have tried C:\Python

Re: Installing modules via setuptools in a script

2007-11-26 Thread Robert Kern
Thorsten Kampe wrote: > * Robert Kern (Mon, 26 Nov 2007 04:34:17 -0600) >> Thorsten Kampe wrote: >>> * Robert Kern (Sat, 24 Nov 2007 16:33:37 -0600) Thorsten Kampe wrote: > can anyone give me a short code snippet how to install a missing > module via setuptools (assuming setuptools is

Re: Installing modules via setuptools in a script

2007-11-26 Thread Thorsten Kampe
* Robert Kern (Mon, 26 Nov 2007 04:34:17 -0600) > Thorsten Kampe wrote: > > * Robert Kern (Sat, 24 Nov 2007 16:33:37 -0600) > >> Thorsten Kampe wrote: > >>> can anyone give me a short code snippet how to install a missing > >>> module via setuptools (assuming setuptools is already installed)?! > >

Re: Installing modules via setuptools in a script

2007-11-26 Thread Robert Kern
Thorsten Kampe wrote: > * Robert Kern (Sat, 24 Nov 2007 16:33:37 -0600) >> Thorsten Kampe wrote: >>> can anyone give me a short code snippet how to install a missing >>> module via setuptools (assuming setuptools is already installed)?! >>> >>> Something like this: >>> >>> try: >>> import miss

Re: Installing modules via setuptools in a script

2007-11-26 Thread Thorsten Kampe
* Ben Finney (Mon, 26 Nov 2007 09:04:51 +1100) > Thorsten Kampe <[EMAIL PROTECTED]> writes: > > * Robert Kern (Sat, 24 Nov 2007 16:33:37 -0600) > > > Thorsten Kampe wrote: > > > > can anyone give me a short code snippet how to install a missing > > > > module via setuptools (assuming setuptools is

Re: Installing modules via setuptools in a script

2007-11-25 Thread Ben Finney
Thorsten Kampe <[EMAIL PROTECTED]> writes: > * Robert Kern (Sat, 24 Nov 2007 16:33:37 -0600) > > Thorsten Kampe wrote: > > > can anyone give me a short code snippet how to install a missing > > > module via setuptools (assuming setuptools is already > > > installed)?! > > > > The recommended way

Re: Installing modules via setuptools in a script

2007-11-25 Thread Thorsten Kampe
* Robert Kern (Sat, 24 Nov 2007 16:33:37 -0600) > Thorsten Kampe wrote: > > can anyone give me a short code snippet how to install a missing > > module via setuptools (assuming setuptools is already installed)?! > > > > Something like this: > > > > try: > > import missing_module > > except i

Re: Installing modules via setuptools in a script

2007-11-24 Thread Robert Kern
Thorsten Kampe wrote: > Hi, > > can anyone give me a short code snippet how to install a missing > module via setuptools (assuming setuptools is already installed)?! > > Something like this: > > try: > import missing_module > except import_error > import setuptools > setuptools.wha

Re: installing modules

2006-11-18 Thread Fredrik Lundh
kilnhead wrote: > I am sure this has been asked a gazillion times, but here it is again. > When installing something like pyRTF, I extract the zip file to a > folder called pyRTFtemp, and then run "setup.py install" in that > folder. After that, can I get rid of the pyRTFtemp folder in general,