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.

link.sh 265B

123456789
  1. for path in `find pylibs/ -maxdepth 1 -type d`; do
  2. if [[ $path != "pylibs/" ]];then
  3. lib=${path#*/}
  4. echo Creating symbolic link for library $lib
  5. rm -f venv/lib/python3.9/site-packages/$lib
  6. ln -s ../../../../$path venv/lib/python3.9/site-packages/
  7. fi
  8. done