Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
package needed for anaconda and winpython, script to refresh anaconda
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Apr 16, 2015
1 parent 06c9d86 commit f81c989
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/pymyinstall/packaged/packaged_config.py
Expand Up @@ -367,10 +367,12 @@ def extend_anaconda():
ModuleInstall("graphviz", "pip"),
ModuleInstall("numexpr", "wheel"),
ModuleInstall("deap", "pip"),
ModuleInstall("antlr4-python3-runtime", "pip", mname="antlr4"),
#
ModuleInstall("autopep8", "pip"),
ModuleInstall("wheel", "pip"),
ModuleInstall("coverage", "pip"),
ModuleInstall("flake8", "pip"),
ModuleInstall(
"sphinxcontrib-images", "pip", mname="sphinxcontrib.images"),
ModuleInstall("sphinx_rtd_theme", "pip"),
Expand Down Expand Up @@ -405,6 +407,7 @@ def extend_winpython():
ModuleInstall("folium", "pip"),
ModuleInstall("graphviz", "pip"),
ModuleInstall("deap", "pip"),
ModuleInstall("antlr4-python3-runtime", "pip", mname="antlr4"),
#
ModuleInstall("autopep8", "pip"),
ModuleInstall("coverage", "pip"),
Expand Down
10 changes: 10 additions & 0 deletions update_anaconda.bat
@@ -0,0 +1,10 @@
if "%1"=="" goto default_value:
set anaconda="%1"
goto next:

:default_value:
set anaconda=c:\Anaconda3

:next:
cd %anaconda%\Scripts
conda update --all
10 changes: 10 additions & 0 deletions update_anaconda_27.bat
@@ -0,0 +1,10 @@
if "%1"=="" goto default_value:
set anaconda="%1"
goto next:

:default_value:
set anaconda=c:\Anaconda2

:next:
cd %anaconda%\Scripts
conda update --all

0 comments on commit f81c989

Please sign in to comment.