Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am trying to use a python module for using Mega and it requires me to have pycrypto installed. I tried using both pip and easy_install to install it but I have had no luck. With pip I am getting an error like this post. I followed the link from the answer in that post, but I really have no idea where to go from there. I am using Windows 7.
Pycripto is C-based extension. You can compile PyCrypto on Windows, here is a step-by-step guide.
Alternatively, you can install compiled binaries.
Here is extensive source of compiled python packages for Windows:
Unofficial Windows Binaries for Python Extension Packages
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 days ago.
Improve this question
I tried to download pyspider for python 3.11.1 and faced with this problem:
I tried to install old pip version and tried to install in python 3.10 and it still not working. What should I do to resolve this problem?
If you are mentioning this library, I see that the last release was in 2018 and the last supported python version is 3.6 in v0.3.9. You have to downgrade it to Python 3.6.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I have been trying to pip install django, but I can’t do it because Windows doesn’t like the invalid filename. Do I have any options other than running a Linux virtual machine?
Make sure you have Git Bash installed (https://git-scm.com/download/win) and make sure python and pip are installed on your computer.
Once you have all that, just run Git Bash and execute pip install django. If it does not work or you have both python2 and python3 installed, use pip3 install django
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
This is the error that i got
I don't even know what went wrong. I'm new to programming and I need this package (pymIprog) for a college assignement
You are doing a pip install in a Python 3.9 environment. I can't get that to work either: it fails trying to install swiglpk. But it does work in Python 3.8 and Python 3.7.
I can't tell you how to fix it: only the packagers of swiglpk can do that. But to get going, you could download Python 3.8, which will coexist nicely with Python 3.9, and work from there.
Python 3.9 only came out quite recently and some packagers take a while to catch up with new releases.
To be sure of running the right version of pip, begin by doing pip --version and if it is not the version you expect, run your pip command from C:\Program Files\Python38\Scripts.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
Please help me. All the tutorials on the Internet on how to install Django are confusing and misleading. I understand I can download it with PIP but I have trouble with the environmental variables so I can run PIP through the Command Prompt.
Just use pip to do it. Open command prompt and write
pip install Django
And, If you are using pycharm then use
pip install django==2.2
where 2.2 is the version
If you don't have python installed I'd recommend doing that first.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
So far I've tried these methods to install the package
pip install rsa andpython setup.py install
but it seems like I installed the one for python2.7.
How can I install the one for python3.2? Or convert the 2.x to 3.x?
Many thanks.
You simply specify the version you wish to use, e.g. python3 setup.py install.