I'm trying to install moosegesture, using pip install moosegesture in PyCharm and I get this error:
ERROR: Error [WinError 225] The operation failed because the file contains a virus or potentially unwanted software while executing command python setup.py egg_info
So far using pip worked fine for me.
Can I install it some other way or what can I do with this error?
Related
I am trying to install the wheel "spinnaker_python-2.6.0.156-cp37-cp37m-win_amd64.whl"", but this error keeps popping up in the terminal. I am running this line from my local drive.
pip install spinnaker_python-2.6.0.156-cp37-cp37m-win_amd64.whl"
I am running this on Python 3.9.10.
Why is this error showing up, and how can I fix it?
I'm following the instructions here https://saas1907y5.saas-secure.com/projects/pitanga-square/wiki on a computer running Windows 7.
When I have to execute py -m pip install kivy[base] kivy_examples I get the following error:
ERROR: Error [WinError 87] The parameter is incorrect while executing command python setup.py egg_info
ERROR: Could not install packages due to an OSError: [WinError 87] The parameter is incorrect
I tried reinstalling Python 3.6.5 and it didn't solve.
Also, when I run the next command py -m virtualenv env I get another error:
RuntimeError: failed to query D:\pitanga-v21.08 with code 13 err: 'Access is denied'
My guess was that there was something wrong with the permissions Python has, so I opened the folder properties -> security and gave full control to everything, that didn't fix it. Instead I got another error:
Error: [Errno 2] No such file or directory: ''
For the record, I tried following the same steps on a Windows Vista machine I have here and (even though it's not officially supported) it worked fine.
Recently i was trying to install speechrecognition in python on vs code but it shows an error i have tried using command prompt but it doesnt work.
here are the codes
'PS C:\Users\Lenovo\Desktop\python> pip install speechRecognition
Collecting speechRecognition
Using cached SpeechRecognition-3.8.1-py2.py3-none-any.whl (32.8 MB)
ERROR: Could not install packages due to an EnvironmentError: [WinError 32] The process cannot
access the file because it is being used by another process:
'C:\\Users\\Lenovo\\AppData\\Local\\Temp\\pip-req-tracker-
e9sg4n2d\\7fd58c0c5ee7cc27d392ed0613487ea8ab5f15fb7f011361ee8a8fae'
Consider using the `--user` option or check the permissions.'
Try
python -m pip install speechRecognition
Just trying to run a
pip install CrossMap
on OSX 10.11.6 with a brew installed python (version 2.7.12) and pip (version 9.0.1) and running into this error:
htslib/hts_os.c:30:10: fatal error: 'os/rand.c' file not found
#include "os/rand.c"
^
1 error generated.
error: command 'clang' failed with exit status 1
I have looked everywhere for information on this error and it has come up empty. Where does this dependency come from and how do I install it?
Thanks!
CrossMap depends on pysam which is a wrapper for sam tools. You need to install htslib before compiling pysam.
i hope someone here can help me cause iam really struggling with this for about 12 hours+.
I try to use Django with MongoDb Using the following Instruction for the packages http://docs.mongodb.org/manual/tutorial/write-a-tumblelog-application-with-django-mongodb-engine/
which want me to install
pip install ***ps://bitbucket.org/wkornewald/django-nonrel/get/tip.tar.gz
pip install ***ps://bitbucket.org/wkornewald/djangotoolbox/get/tip.tar.gz
pip install ***ps://github.com/django-nonrel/mongodb-engine/tarball/master
I managed the first 2, however I get the following errors when I try to install the mongodb-engine.
I tried various forms to install it like "pip install django-mongodb-engine"
I get the following error:
"C:\Users\Burnie\Anaconda3\Scripts>pip install django-mongodb-engine
Collecting django-mongodb-engine
Using cached django-mongodb-engine-0.6.0.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 20, in
File "C:\Users\Burnie\AppData\Local\Temp\pip-build-ntl4z4sp\django-mongodb-engine\setup.py", line 3, in
import django_mongodb_engine as distmeta
File "C:\Users\Burnie\AppData\Local\Temp\pip-build-ntl4z4sp\django-mongodb-engine\django_mongodb_engine__init__.py", line 12,
in
from django.conf import settings
File "C:\Users\Burnie\Anaconda3\lib\site-packages\django\conf__init__.py", line 88
except ImportError, e:
^
SyntaxError: invalid syntax
Command "python setup.py egg_info" failed with error code 1 in C:\Users\Burnie\AppData\Local\Temp\pip-build-ntl4z4sp\django-mongodb-
engine"
MySystem:
Windows 7,
Anaconda (as python distribution) 64bit
I hope someone can help me on that.
The bitbucket versions of the code are pretty old now. You should use the ones on github instead.
pip install https://github.com/django-nonrel/django/tarball/master
pip install https://github.com/django-nonrel/mongodb-engine/tarball/master
pip install https://github.com/django-nonrel/djangotoolbox/tarball/master
There's also some more up to date instructions on getting this working available in the mongodb-engine documentation