LoginSignup
2
1

More than 5 years have passed since last update.

cloud9でpython3を使用する

Posted at
  1. PreferencesからPython VersionをPython3へ変更する
  2. エイリアスを貼り直す

    $ which python
    alias python='python27'
    /usr/bin/python27
    
    $ alias python='python3'
    
  3. Pythonの参照をリロードする

    sudo update-alternatives --config python
    
  4. バージョンが書き換わっていれば完了

    $ python -V
    Python 3.6.5
    
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1