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.

reposinit 381B

12345678910111213141516
  1. #!/bin/sh
  2. #
  3. echo "* Intialising Submodules"
  4. mkvenv
  5. echo "* Linking pylibs to venv"
  6. for path in `find pylibs/ -maxdepth 1 -type d`; do
  7. if [[ $path != "pylibs/" ]];then
  8. lib=${path#*/}
  9. echo Creating symbolic link for library $lib
  10. rm -f venv/lib/python3.9/site-packages/$lib
  11. ln -s ../../../../$path venv/lib/python3.9/site-packages/
  12. fi
  13. done
  14. sudo ln -s `pwd` /usr/local/bin