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
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
0
votes
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
  • 31
  • 8
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
  • 943
  • 16
  • 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
  • 476
  • 3
  • 6
  • 18
0
votes
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
  • 67
  • 3
  • 13
0
votes
0 answers

PYTHONPATH with limited access directories and shared Anaconda installation

We have a shared Anaconda install on a Windows 2016 server where users have varied access rights. We set PYTHONPATH to point a network drive (P:/code) to enable the import of custom modules. When a user who does not have access to P:/code attempts…
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…