Installing pymzml on Anaconda issues - anaconda

I am trying to install pymzml through anaconda cmd prompt (conda install -c bioconda pymzml)
but the following error appears:
( PackagesNotFoundError: The following packages are not available from current channels:
pymzml
any advice is much appreciated.

Related

Installing mplsoccer into conda issue

I can install mplsoccer into my command prompt using pip, but I am unable to install it into conda. I get the error message:
Image shows error message inside conda
I have been to anaconda.org, but I am unable to find a solution
I'm the author of mplsoccer. It is now available in conda-forge: conda install -c conda-forge mplsoccer.

How to install opencv on windows

I want to install face_recognition package on windows using anaconda prompt, however the official documentation says, "Windows not officially supported, but might work".
I'm getting error of OpenCV(dlib) while trying to install face_recognition.
Any help will be appreciated!
I solved my problem by the following commands:
Downgrade python for compatibility.
conda install python=3.6.0
Install dlib from conda-forge
conda install -c conda-forge dlib
Install face_recognition pkg with --no-dependencies flag to avoid installation of dlib as dependency
pip install --no-dependencies face_recognition

getting unsatisfiable error while installing mxnet on windows. I am using ANACONDA 5.1.0 VERSION AND PYTHON 3.5.3 VERSION

I wanted to install MXNET using commands conda install -c anaconda mxnet and conda install mxnet, but I am getting unsatisfiable error as show in images.
'conda install -c anaconda mxnet':
'conda install mxnet':
You can find the install instruction on the website:
Select your preferred configuration, for example on windows, install mxnet using
pip install mxnet

conflict while installing mayavi into anaconda

Good day,
My colleague asked my to install Anaconda and mayavi and I am novice with this topic and I decided to do the tasks on a new ubuntu installation
Here are my tasks before my issue
I fresh installed a Ubuntu 16.04
I ran all update apt-get update/upgrade
I created an user account (anna) and add it in sudo group
I loged into anna account
I downloaded Anaconda2-4.4.0-Linux-x86_64.sh for python 2.7
I installed with the command sudo bash Anaconda2-4.4.0-Linux-x86_64.sh
I installed anaconda in /opt/anaconda2 instead to the /home/anna/anaconda2 (for all user usage) and I say YES to have the line export PATH="/opt/anaconda2/bin:$PATH" in .bashrc file of anna
I run source /home/anna/.bashrc
After the anaconda installation, I could see a successful message regarding the installation
Now my colleague asked me to install mayavi and she provided me the following link mayavi
Then I simply enter the following command
conda install -c anaconda mayavi=4.5.0
And here start my problem. I can not well understand the conflict but apparently there is a conflict and I have no idea how to solve it. Here is the command and the message
anna#pc17:~$ conda install -c anaconda mayavi=4.5.0
Fetching package metadata ...........
Solving package specifications: .
UnsatisfiableError: The following specifications were found to be in conflict:
- mayavi 4.5.0* -> pyqt 4.* -> qt >=4.8.6,<5.0
- mayavi 4.5.0* -> pyqt 4.* -> sip >=4.16.4,<4.18
- navigator-updater -> pyqt >=5.6 -> qt 5.6.*
Use "conda info <package>" to see the dependencies for each package.
I have no idea what does mean the above message and how to solve me problem.
Is there depencies that I have to additionally install?
For information the above command return me this:
anna#cryospc17:~$ python --version
Python 2.7.13 :: Anaconda 4.4.0 (64-bit)
anna#cryospc17:~$ python3 --version
Python 3.5.2
Did I correctly try t install mayavi?
Thank a lot for any help you can provide me
To complete the install of mayavi, you have to first install the following depence
conda install -c anaconda vtk=6.3.0
conda install -c anaconda pyside=1.2.1
Then install mayavi
conda install -c anaconda mayavi=4.5.0
It may possible, you have to remove pyqt
conda uninstall pyqt
We finally could install anaconda and mayavi sucessfully.
I hope it help
Cheers
This might be helpfull to others. It must be anaconda for python 2.7 currently and the follows worked.
Install anaconda for python 2.7, then try the follows:
conda uninstall pyqt
conda uninstall navigator-updater
conda install pyqt=4
conda install vtk
conda install envisage
conda install pyside
conda install apptools=4.4.0
conda install mayavi

installing cvxopt on windows 10 using anaconda python 3.*

I've been trying to install cvxopt on Anaconda Python 3.x for a while now, reading past posts and I can't seem to make it work. Here is what I have tried so far:
pip install cvxopt --user
which gave me the following error:
Failed building wheel for cvxopt
Then I tried this:
conda install -c omnia cvxopt
output:
UnsatisfiableError: The following specifications were found to be in conflict:
- cvxopt
- python 3.5*
I installed mkl using this:
conda install mkl
which worked but trying out the previous commands still don't work.
I have installed multiple things in the past using the command prompt but my experience has told me to make sure I know and understand what I am installing because I wrecked my computer one time. So instead of trying things blindly, I would like to know if someone had a tipp.
As you can see here cvxopt does not support python 3.5+ due to compiler incompatibility.
Nevertheless, as stated in the comments, you can use anacodna to create a virtual environment and install it.
conda create --name py34 python=3.4 numpy
activate py34
conda install -c omnia cvxopt

Resources