Conda 1st time install conflicts with existing python install
See original GitHub issueI tried:
conda create -n "eeg-notebooks"
conda activate "eeg-notebooks"
conda install git
conda install pip
git clone https://github.com/NeuroTechX/eeg-notebooks
cd eeg-notebooks
pip install -r requirements.txt
but encountered errors on the last step, since it tried to use my existing python 2 install on my Mac.
@m9h helped me using a different set of instructions.
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
System Python conflict between Anaconda and existing ...
The solution is simply to uninstall python (for example, run the original python installer and select the uninstall option).
Read more >conda refuses to install python 3.9.0 with conflicts even if there ...
conda refuses to install python 3.9.0 with conflicts even if there are no installed packages and unfortuneatly update from python 3.8 is impossible...
Read more >Will Anaconda conflict with my already existing Python ... - Quora
Anaconda injected itself into my .bashrc , masking python from the system and a later installation via brew . This was python2 from...
Read more >Managing packages - Conda
To install a specific package such as SciPy into an existing environment "myenv": ... so that all of the dependencies are installed at...
Read more >CondaInstall - GNU Radio Wiki
If this is your first time using conda, we recommend miniforge for the base installation. This provides a minimal environment to run conda...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This is very surprising to me. If you ran
conda activate "eeg-notebooks"
in the same shell as you later ranpip
then shouldn’t that override any system pip install by placing the conda env bin path early in the$PATH
env var? (that’s at least how plainvenv
and similar behave)Curious how that wasn’t the case. What was the difference that fixed it for you?
@retiutut I made a docs PR #51 that should help avoid similar issues in the future.