octaveref.txt 780 B

123456789101112131415161718192021
  1. # Octave reference
  2. # installing symbolic package
  3. 1. connect to the internet
  4. 2. start Gnu Octave
  5. 3. on the octave prompt, give the following command
  6. pkg install -forge symbolic
  7. this will install the latest symbolic package from octaveforge site
  8. you can also just download the symbolic package from the site
  9. https://octave.sourceforge.io/873 then give the command
  10. pkg install /path_to_the_downloaded_package/symbolic_with_version_number
  11. you can read more about this in octave-documentation
  12. >> setenv PYTHON /home/saran/.envn/dsci/bin/python3
  13. >> system('curl https://bootstrap.pypa.io/get-pip.py | $PYTHON - --user');
  14. >> system('$PYTHON -m pip install --user sympy')
  15. >> pkg load symbolic
  16. >> syms x
  17. Ref: https://github.com/octave-snap/octave-snap/issues/17