ptpython configuration
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
root 6657312cb2 Ansible adaptions il y a 1 an
icons pylibs update il y a 1 an
pylibs @ 9ce97cedf3 module update il y a 2 ans
.gitignore Initial commit il y a 3 ans
.gitmodules Pylibs added il y a 3 ans
LICENSE Initial commit il y a 3 ans
README.md Install instructions updated il y a 2 ans
reposinit Ansible adaptions il y a 1 an
requirements.txt Added needed module to requirements.txt il y a 2 ans

README.md

ptpython

Installation instruction for ptpython

Install

Create Virtualenv

virtualenv venv

Install Cutelog

source venv/bin/activate
pip install -r requirements.txt
deactivate

Open ptpython

venv/bin/ptpython

Upgrade

source venv/bin/activate
pip install -U -r requirements.txt
deactivate

Add pylibs to ptpython

git submodule init git submodule update cd pylibs git submodule init git submodule update cd ../venv/lib/python3.*/site-packages for lib in ls -d ../../../../pylibs/*/; do ln -s $lib; done