I'm trying to create a conda environment with a couple of packages that I have installed but it throws:
PackageNotFoundError: Packages missing in current channels
important note: the packages that come back with above error are the ones that are installed using pip
. so the question can be put as:
How to create a conda environment composed of packages that are installed using pip
?
To be clear, packages are installed using conda pip at ~/anaconda3/bin/pip
conda create --name myenvname scipy parquet
Fetching package metadata .........
PackageNotFoundError: Packages missing in current channels:
- parquet
We have searched for the packages in the following channels:
- https://repo.continuum.io/pkgs/free/linux-64
- https://repo.continuum.io/pkgs/free/noarch
- https://repo.continuum.io/pkgs/r/linux-64
- https://repo.continuum.io/pkgs/r/noarch
- https://repo.continuum.io/pkgs/pro/linux-64
- https://repo.continuum.io/pkgs/pro/noarch
conda list | grep parquet
fastparquet 0.0.6 <pip>
parquet 1.2 <pip>
conda list | grep scipy
scipy 0.19.0 np112py36_0