benyaminmk / neuromusic

Auralization of brain waves
0 stars 1 forks source link

conda create issue #4

Closed dcardonab closed 3 years ago

dcardonab commented 4 years ago

I seem to be running into issues when trying to create a conda env from the requirements.txt file. This is the log I get. Perhaps you have a better idea?

Davids-MBP-7:neuromusic David$ conda create --name neuroMusic --file requirements.txt Collecting package metadata (current_repodata.json): done Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source. Collecting package metadata (repodata.json): done Solving environment: failed

PackagesNotFoundError: The following packages are not available from current channels:

Current channels:

To search for alternate channels that may provide the conda package you're looking for, navigate to

https://anaconda.org

and use the search bar at the top of the page.

benyaminmk commented 3 years ago

tested with python 3.8 on windows and it's working.

What worked for me:

  1. create new conda env called 'neuromusic' with python 3.8 (conda create -n neuromusic python=3.8)
  2. activate the new environment (conda activate neuromusic)
  3. install requirements using pip (pip install -r requirements.txt)