英文字母

英文字母
英文字母
顯示具有 python 標籤的文章。 顯示所有文章
顯示具有 python 標籤的文章。 顯示所有文章

2024年9月27日 星期五

How to Install Jupyter Notebook on Windows 11

viedo


1.check python
   ps ==>python --version

   若無 insall python   ==>  https://www.python.org/downloads/windows/


2. install jupyter notebook
     ps ==> pip install notebook

3. ps ==>jupyter notebook

2020年11月30日 星期一

install anacoda and django on ubuntu1804

 anacoda 

https://www.digitalocean.com/community/tutorials/how-to-install-anaconda-on-ubuntu-18-04-quickstart


django

https://www.digitalocean.com/community/tutorials/how-to-install-the-django-web-framework-on-ubuntu-18-04

 如何啟動 ~/django-test

                    source my_env/bin/activate 

如何關掉 ~/django-test

                   deactivate


python3 裝了沒

                  ~/django-test

                   python3 -V

 

 django 裝了沒

              ~/django-test

              python3 -m django --version


  在 ~/django-test 新增 mytestsite  web點

          django-admin startproject mytestsite

       runserver

        ~/django-test/mytestsite

         python3 manage.py runserver