Questions tagged [pythonpath]
9 questions
2
votes
1 answer
Why can't my TeamCity installation work with Mercurial when it works fine from the command line?
I am having trouble adding a Mercurial VCS root to a TeamCity Project. When I enter the repository information and click 'Test Connection' the pop-up says 'Connection Failed', shows me a message 'stderr: abort: couldn't find mercurial libraries in…

Matt Travi
- 41
- 6
1
vote
1 answer
Supervisord (exit status 1; not expected) centos python
Ran into additional issue with Supervisord.
Centos 6.5
supervisor
python 2.6 installed with the OS
python 2.7 installed in /usr/local/bin
supervisord program…

Michael
- 61
- 1
- 8
1
vote
6 answers
Cannot install mercurial properly - PYTHONPATH error
I have a server running on Ubuntu 10.04 on which I wanted to install Mercurial via
% sudo apt-get install mercurial
It seems to have installed successfully and doesn't show me any error messages. But when I try it I get:
% hg
abort: couldn't find…

florianbaethge
- 225
- 1
- 3
- 8
1
vote
0 answers
macos: env: python: No such file or directory when I use dot slash on a .py file
I thought all I had to do was add things to my path and pythonpath but MAC os still cannot find Python when I do a ./myfile.py etc...
my .zshrc:
export…

Codejoy
- 107
- 5
- 17
0
votes
1 answer
PYTHONPATH overwritten when running under supervisord
I have the following supervisor program config:
[program:showvars]
environment=TESTVAR=hi,PYTHONPATH=/home/eric/python/tools/
command=python /home/eric/showvars.py
where showvars.py simply loops through the environment variables and prints their…

erjiang
- 296
- 2
- 10
0
votes
1 answer
OpenStack over NGINX+uWSGI
Following this not so popular question: OpenStack & NGINX+uWSGI
I've start to build my dashboard node using well... NGINX and uWSGI of course, but I'm now facing a path problem.
Indeed, uWSGI is correctly launching the processes and NGINX is…

Dr I
- 955
- 17
- 33
0
votes
1 answer
Setting pythonpath for Trac running as fast-cgi
I have a trac install set up using fast-cgi on a server. I'm trying to install the bitten extension to it so I can do continuous integration - however the environment on which trac is running for some reason doesn't have ~/lib/pythonX.X/ in its…

Zxaos
- 496
- 3
- 6
- 18
0
votes
1 answer
How to automatically activate a python environment when 'source' command does not work?
I set up an python environment in path \pyenv\1st\
by
cd /
mkdir pyenv
python3 -m venv /pyenv/1st
The official method to activate this environment is to type this command manually:
. /pyenv/1st/bin/activate or source /pyenv/1st/bin/activate,
which…

George Y
- 528
- 6
- 16
0
votes
1 answer
Python path error when running Kolla ansible installation
I am attempting to install kolla-ansible to a bare metal server and experiencing this issue. I have been following this guide for setup: https://kifarunix.com/deploy-all-in-one-openstack-with-kolla-ansible-on-ubuntu-18-04/ and have hit a roadblock…