No module named django_river - python

I have an issue when running pip install -r requirements.txt and got no module named django_river.
I tried installing the package pip install django_river but it gives error, package does not exist.
Thanks

You can try installing the package:
pip install django-river
This should work out

Related

How to fix install error in cx_freeze with pip?

I was trying to install cx_Freeze and every time an error happens. I tried to install it with pip, that didn't work, and I'm trying to install this by wheel, downloading the cx_freeze file from https://pypi.org/project/cx_Freeze/4.3.4/#files and using pip to install it by:
pip install cx_Freeze-5.1.1-cp36-cp36m-win_amd64.whl
I already have wheel installed in my computer.
How can I fix this?
if you want to install cx-freeze module you do not need to mention whole file directory...
you can just type:-
pip install cx-freeze
copy this command and paste it in cmd(command prompt)
if you want to install any package you have to write:-
pip install (package name)
hope the answer will be useful

No module named 'virtualenv'

I installed 'virtualenv' with
pip install virtualenv
Installing collected packages: virtualenv
Successfully installed virtualenv-16.0.0
However, when I run 'virtualenv project1' it gives me this error:
**ModuleNotFoundError: No module named 'virtualenv'**
It happens with every package I tried to install. I have python2 and python3 at the same time. I suspect that is messing up everything. Does anyone know how to fix this?
I have python2 and python3 at the same time.
you are likely installing for Python3 but trying to run with Python2 (or vice versa)
for installing into Python2, use:
python -m pip install <package>
for installing into Python3, use:
python3 -m pip install <package>

Getting ImportError: No module named 'Crypto' after installation

I am getting ImportError: No module named 'Crypto' error when trying to run. I have installed pycrypto using pip install pycrypto and updated it also. Everything I have tried to far has been unsuccessful.
Tried:
reinstalling pycrypto,
updating both python and pycrypto
Any suggestions?
The error messages says, it does not able to find the module so please try to run below command,
#pip list -- # what does it show to you, if it would have installed successfully it will show you up there.
if "pip install pycrypto" doesn't work so try to download the source tar ball and try to install it from prompt.
pip download pycrypto
it will download tar.gz file.. so you can install using with pip install --no-index --find-links /path/to/some/dir/ pycrypto
for python3.5 version
python3.5 -m pip install pycrypto
this will install in python3.5 environment and after that you can able to import pycrypto module
Is python defined properly on your machine?
Make sure PATH environment variable has python's installation folder in it

AttributeError: 'VersionInfo' object has no attribute 'semantic_version'

When use pip version 6.0+ to install a package, I got an error like the title.
I find it's mainly because a dependency was installed using an earlier version of pip. To fix it, try pip install --upgrade pip followed by using pip to install the package again.

Install .whl error

I want to use curses module in windows.So I found
python celery - ImportError: No module named _curses - while attempting to run manage.py celeryev
And when I want to install, I am getting an error.
I am running
pip install curses-2.2-cp34-none-win32.whl
pip install curses-2.2-cp34-none-win_amd64.whl
pip install --use-wheel curses-2.2-cp34-none-win32.whl
pip install --use-wheel curses-2.2-cp34-none-win_amd64.whl
All it does is display this error:
curses-2.2-cp34-none-*.whl is not a supported wheel on this platform.
Why? How can I solve it?
You probably want the cp27 wheel (cp34 is for CPython 3.4)

Categories