How do I install Django on Windows 10? [closed] - python

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.

Related

This is an issue with the package mentioned above, not pip [closed]

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.

Cannot install Django on Windows because there is an invalid character in a filename [closed]

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

Why can't I download swiglpk and how can I fix it? [closed]

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.

how to fix this prompt anaconda error msg [closed]

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

Not able to install python module pycrypto [closed]

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

Categories

Resources