I tried to run the latest release version of ninix-aya that is persistently continuing with Docker, but I could not install ghosts well with Python3.4, so it seems that it is being developed for 3.3, so I introduced pyenv.
GPyGObject used in ninix-aya must be manually inserted in pip except for Windows platforms.
Even if you can change the python command to any version with pyenv, the ./configure && make system will be put in / usr / local etc. by default. With this, even if you can easily change the python version with pyenv, you will end up building every time.
I solved it by using the pyenv prefix of the command that is only on the python uninstall method installed on the official page of pyenv.
./configure --prefix=$(pyenv prefix)
Specify like this.
Perhaps using Virtualenv solves this problem, but I haven't used it so far because it's annoying.
Recommended Posts