Tagged Questions
-1
votes
0answers
21 views
Directory issue installing pygame on windows [closed]
When I run the windows pygame-3.2.msi file I am asked where I would like to install pygame. This has me completely stuck. I tried downloading it to C/ but my python installation doesn't have that path ...
0
votes
0answers
9 views
failure in installing chardet
I download a chardet module,placed it in d:\\and want it installed in python,
so I use the cmd :
c:\\Python27\python.exe d:\\chardet\setup.py
the win command says that:
Traceback (most ...
0
votes
1answer
34 views
How do I install python's httplib2 on a mac?
OS: Mac OSx 10.8.3
IDE: Eclipse w/ PyDev
How do I properly install httplib2 on a Mac? It can be done on Ubuntu, Debian, Gentoo, and FreeBSD via the command posted below except Mac OS.
Apparently ...
1
vote
0answers
146 views
Enthought Canopy on Mac OS X installing external program Dolfin (FEniCS)
Over the past few weeks I started programming in Python and have been using Enthought Canopy's python environment (using Mac OS X). I'm interested in modeling incompressible Navier-Stokes equation ...
0
votes
1answer
68 views
Python3.3 Paramiko Windows Install Errors
Trying to install Paramiko on a Windows XP PC. I am running Python 3.3.1. The enviroment variable is set to C:\Python33\;C
I have PyCrypto installed with no issues.
I have tried Paramiko versions ...
0
votes
0answers
22 views
How to use easy_install to install locally?
I try to install PyTables package using easy_install.
My problem is that I am not root on the system and am not allowed to write to /usr/local/lib/python2.7/dist-packages/ directory.
To solve this ...
0
votes
0answers
35 views
installing pyffmpeg (libavcodec file/dir seems missing) fails
after downgrading to cython 0.13 to be able to install pyffmpeg without cython errors (sigh, this lib is being a pain, yeah),
the install procedure for pyffmpeg ended after calling the error: ...
0
votes
2answers
138 views
Trouble installing pycurl on Mac OS X 10.6.8
I am working on a python project (I have python 2.7) that uses the eBay SDK module found here: https://github.com/timotheus/ebaysdk-python
I was able to install ebaysdk but had trouble when running ...
0
votes
2answers
89 views
Installing OpenMDAO
I am trying to install OpenMDAO, which is an open source framework that uses python. So before I get to it, it needs 3 packages:
Fortran Compiler
NumPY
ScyPy
Which I did install using homebrew:
...
0
votes
1answer
100 views
ipython install new modules
I am used to the R functionality of installing packages and I am trying to do the same thing with ipython. Sometimes the following method works but then again sometimes it doesn't and I would like to ...
0
votes
0answers
18 views
how to install cx_oracle package with pip from Ubuntu linux? [migrated]
I am trying to install cx_oracle from Ubuntu using pip install cx_oracle however I get the error below. Also tried to go to the pip package page and it does not look like there are any files ...
0
votes
2answers
65 views
Install python module on university computer
I am trying to install dropbox on my university host, and that requires python module docutils. So, after downloading the module and running python install.py I get the following output:
running ...
1
vote
2answers
86 views
Cannot seem to install pandas for python 2.7 on windows
Sorry if this has been answered somewhere already, I couldn't find the answer.
I have installed python 2.7.3 onto a windows 7 computer. I then downloaded the pandas-0.10.1.win-amd64-py2.7.exe and ...
-6
votes
2answers
60 views
how did I break my python in ubuntu - $PYTHONHOME [closed]
I removed the original python on my ubuntu to replace it with an installed python 2.7.3. to make this version as a default version of python on my system .
To do this, I did rm /bin/python and rm ...
1
vote
3answers
61 views
rpy2: check if package is installed
Using rpy2, I want to check if a given package is installed. If it is, I import it. If not, I install it first.
How do I check if it's installed?
from rpy2 import *
if not *my package is ...