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

Commit

Permalink
missing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Feb 21, 2015
1 parent bcfea7a commit f29789d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
6 changes: 5 additions & 1 deletion _doc/sphinxdoc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,9 @@ s'installe avec ``pip install <module>``. Deux distrubutions possibles :
* `dbfread <http://dbfread.readthedocs.org/en/latest/>`_
* `rpy2 <http://rpy.sourceforge.net/>`_ (`Windows <http://www.lfd.uci.edu/~gohlke/pythonlibs/#rpy2>`_)
* `mpld3 <http://mpld3.github.io/>`_ (`Windows <http://www.lfd.uci.edu/~gohlke/pythonlibs/>`_)
* `folium <https://github.com/python-visualization/folium>`_
* `graphviz <https://github.com/xflr6/graphviz>`_
* `numexpr <https://github.com/pydata/numexpr>`_

* `WinPython <https://winpython.github.io/>`_ (Windows). Sous Windows, elle a l'avantage d'inclure
`R <http://www.r-project.org/>`_ ou `Julia <http://julialang.org/>`_. On passe alors
Expand All @@ -203,7 +206,8 @@ s'installe avec ``pip install <module>``. Deux distrubutions possibles :
* `dbfread <http://dbfread.readthedocs.org/en/latest/>`_
* `bokeh <http://bokeh.pydata.org/en/latest/>`_ (`Windows <http://www.lfd.uci.edu/~gohlke/pythonlibs/#bokeh>`_)
* `pywin32 <https://pypi.python.org/pypi/pywin32>`_ (`Windows <http://www.lfd.uci.edu/~gohlke/pythonlibs/#pywin32>`_)

* `folium <https://github.com/python-visualization/folium>`_
* `graphviz <https://github.com/xflr6/graphviz>`_

Sous Linux, l'installation ne pose pas de problèmes. Sous Windows, il faut installer
les packages `wheel <http://wheel.readthedocs.org/en/latest/>`_. Ces modules
Expand Down
20 changes: 8 additions & 12 deletions build_setup_help_on_windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,37 +16,27 @@ mkdir c:\Python34vir
IF EXIST c:\Python34vir\install GOTO fullsetupa:
c:\Python34\Scripts\virtualenv c:\Python34vir\install --system-site-packages
if %errorlevel% neq 0 exit /b %errorlevel%

:fullsetupa:
echo #######################################################
c:\Python34vir\install\Scripts\python -u setup.py install
if %errorlevel% neq 0 exit /b %errorlevel%
echo #######################################################


:checkinstall64:
IF EXIST c:\Python34_64vir GOTO nextb:
mkdir c:\Python34_64vir

:nextb:
IF EXIST c:\Python34_64vir\install GOTO fullsetupb:
echo #######################################################
c:\Python34_x64\Scripts\virtualenv c:\Python34_64vir\install --system-site-packages
if %errorlevel% neq 0 exit /b %errorlevel%
echo #######################################################

:fullsetupb:
echo #######################################################
c:\Python34_64vir\install\Scripts\python -u setup.py install
if %errorlevel% neq 0 exit /b %errorlevel%
echo #######################################################

:utpy34_64:
set pythonexe="c:\Python34_x64\python"
%pythonexe% -u setup.py clean_space
if %errorlevel% neq 0 exit /b %errorlevel%
%pythonexe% -u setup.py unittests
if %errorlevel% neq 0 exit /b %errorlevel%
echo #######################################################

:setup33:
IF NOT EXIST c:\Python33 GOTO setup33_64:
set pythonexe="c:\Python33\python"
Expand Down Expand Up @@ -76,7 +66,13 @@ echo #######################################################
:setup34_x64_msi_wheel:
set pythonexe="c:\Python34_x64\python"
:custom_python:
%pythonexe% -u setup.py clean_space
%pythonexe% setup.py clean_pyd
if %errorlevel% neq 0 exit /b %errorlevel%
%pythonexe% -u setup.py unittests
if %errorlevel% neq 0 exit /b %errorlevel%
echo #######################################################

%pythonexe% setup.py sdist --formats=gztar,zip --verbose
if %errorlevel% neq 0 exit /b %errorlevel%
%pythonexe% setup.py bdist_wininst --plat-name=win-amd64
Expand Down
2 changes: 1 addition & 1 deletion bunittest_notebooks.bat
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ set pythonexe="c:\Python34_x64\python"
if %errorlevel% neq 0 exit /b %errorlevel%
%pythonexe% -u setup.py unittests_all
if %errorlevel% neq 0 exit /b %errorlevel%
echo #######################################################
echo #######################################################
2 changes: 1 addition & 1 deletion open_ipython_notebook_64.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ set path=%path%;c:\Python34_x64;c:\Python34_x64\Scripts

:custom_python:
ipython3 notebook --notebook-dir=_doc\notebooks
rem ipython3 help notebook
rem ipython3 help notebook

0 comments on commit f29789d

Please sign in to comment.