[the error in the photo][1]
that massage pop up when I try to install mingw-w64 and there is no internet problem
I downloaded it several times but the same problem
Version 8.1.0 is a bit outdated. There are more recent versions of MinGW-w64.
Try the standalone build from https://winlibs.com/ : it has a much more recent version and requires no installation (just unzip the download).
Related
trying to install audio diff for python 3.0 in visual studio code but getting an error message stating no matching distribution found for mutagen==1.21.
I tried installing mutagen 1.21 got installed but still not able to install audiodiff.
So, looking at this issue it looks like these libraries (mutagenwrapper and audiodiff) are written for Python2 so if you are using Python3 they won't work.
Luckily, it looks like #SteveClement has updated them to Python3 himself (thank you to this comment for pointing it out).
So, to install his versions of them:
pip install git+https://github.com/SteveClement/mutagenwrapper.git
pip install git+https://github.com/SteveClement/audiodiff.git
I can't test these but let me know if this works for you.
I have macOS 10.13
bazel version 0.15.2-homebrew
I am trying to install bazel 0.4.5 to be able to finish my tensorflow GPU support installation. there is a problem where I have to have bazel 0.4.5 instead 0.15.2 (what a pain)
I have downloaded the binary file bazel-0.4.5-installer-darwin-x86_64.sh
I ran chmod +x bazel-0.4.5-installer-darwin-x86_64.sh
then ./bazel-0.4.5-installer-darwin-x86_64.sh --user
when running the installation i get following error
Uncompressing......
/Users/jvivas/.bazelrc already exists, moving it to /Users/jvivas/.bazelrc.bak.
Problem with java installation: couldn't find/access rt.jar in
/Library/Java/JavaVirtualMachines/jdk-10.0.2.jdk/Contents/Home
looks like I can not run bazel 0.4.5 with JDK 10..here is where I dont know what do...may be I have to downgrade the JDK to 8 or 9, which it seems there was another problem with it.
Have anyone ran into this issue before?
Thanks
I'm trying to install the latest version of PyQt4 for windows. Riverbank doesn't provide binary installer anymore. I downloaded the source package and when I try to follow the instructions by running python configure.py I get an error message that I need SIP 4.18 or later version to be installed. I try to install sip using pip3 install sip (as it's explained here: https://pypi.python.org/pypi/SIP/4.19), but it fails to install.
Would you please help me in this?
I would like to visualize weather data, which are under the format .grb2. Therefore I need the library pygrib for python. I've already install grib-api and pygrib, as explained on the installation notes of pygrib (http://jswhit.github.io/pygrib/docs/). I'm using python 3.5 installed with anaconda. I ran
brew install grib-api
pip install pygrib
However when I try to import pygrib in a python script I always get the same error message :
import pygrib
--> ImportError: dlopen(/Users/Marguerite/anaconda/lib/python3.5/sitepackages/pygrib.cpyton-35m-darwin.so, 2): Library not loaded: #rpath/libjpeg.9.dylib
Referenced from: /Users/Marguerite/anaconda/lib//libgrib_api.dylib
Reason: Incompatible library version: libgrib_api.dylib requires version 12.0.0 or later, but libjpeg.9.dylib provides version 11.0.0
I've tried several times to uninstall/reinstall jpeg libraries, or install libjpeg with macports, nothing seems to do the trick ... Also I can't find the library libjpeg when I run "conda list". It seems it is included into some other library (jpeg of libjpeg-turbo), but again updating those libraries didn't improve results.
I would appreciate really any help or thoughts !
Thanks,
Marguerite
Actually I found a solution. Libjpeg is updated with conda update jpeg, but not to the latest version.
The trick that worked for me is to install a bigger package, which automatically update libjpeg. Just run :
conda install -c conda-forge jasper
After that it worked fine for me :)
yagmail was working for me, this is the first time ive tried it since I upgraded to python 3.5, and it doesnt work. I uninstalled yagmail and tried to pip install it again but it showed me this error on no matching distribution found for win32ctypes?
http://imgur.com/nko5GRs
Any help will be appreciated. Thanks!
It seems to be a keyring issue. Probably they need to support windows for Python3.5
You could try to see if their most recent version on git works:
pip uninstall keyring
pip install git+https://github.com/jaraco/keyring.git
pip install yagmail
Let me know, and feel free to open a ticket on github as well.
Not sure if that would work: there are no issues for Python 3.5 on OS' other than Windows.