Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create readme.md #6

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions MyModules/AnacondaEnv/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
### Anaconda `activate.bat` Clone for Powershell

Created in reponse to this issue: https://github.com/ContinuumIO/anaconda-issues/issues/311

This module will mimic Anaconda's `activate` function almost completely, allowing users to mimic the Anaconda Prompt in Powershell.

### How To Use

Example usage: https://gist.github.com/pldmgg/c84e802bcecd6e4c962f65be5b5d316d

### Functionality

+ Sets the `python` path to the appropriate Anaconda environment.

+ Sets `conda` to the Anaconda base `conda.exe`

+ Sets up propert encoding and overhead for running Anaconda Python in the PS terminal.

+ Does not map `pip`, `easy_install`, `conda install`, or similar package managers to the appropriate virtual environment. Always maps them to the base environment. Run `pip --version`, `Get-Command conda`, or similar, to verify this.

### TODO

+ Fix issues regarding mapping `pip`, `easy_install`, and `conda install` to the appropriate virtual environment.