ptpython configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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