Windows Ubuntu BashにGitlab Development Kitをインストールしようとしています。
$python3
出力
Python 3.5.2 (default, Nov 17 2016, 17:05:23)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
$python
出力
The program 'python' can be found in the following packages:
* python-minimal
* python3
Try: sudo apt install <selected package>
私がこれをやろうとすると:
sudo apt-get install build-essential
./configure
make -j4 # adjust according to your available CPU capacity
sudo make install
これは後の出力です ./configure
$ ./configure
/usr/bin/env: ‘python’: No such file or directory
$ python --version
The program 'python' can be found in the following packages:
* python-minimal
* python3
Try: sudo apt install <selected package>
$which -a python
出力なし
どうすればこれを解決できますか?Ubuntuは初めてです。
python2
か?
$ alias python=python3
Pythonを作成する前に使用していた私の悪い点は、Pythonを再度開いた後、問題が解決しなかったためです
python --version
; ii)which -a python
。