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 3 years ago.
Improve this question
I use windows 8.1 and I tried to install hdbscan package command line : pip install hdbscan, the installation starts first normally but after I have got this msg error
any idea about how to fix it, please?
you should download and install visual studio c++ 14.0
https://visualstudio.microsoft.com/downloads/
pip install hdbscan
My execution
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 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 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 8 years ago.
Improve this question
I'm trying to run a scrapy project in python 2.7 but I have that problem. I had other problems but solved them with sudo pip install ... I looked up in google but can't find any solution to this problem.
Have you installed the requests library?
sudo pip install requests
requests.structures is simply a module in that package.
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