openai / universe-starter-agent

A starter agent that can solve a number of universe environments.
MIT License
1.1k stars 318 forks source link

No server running issue #124

Closed MFaisalZaki closed 6 years ago

MFaisalZaki commented 6 years ago

I have the following error when I try to execute the "python train.py --num-workers 2 --env-id PongDeterministic-v3 --log-dir /tmp/pong" it says "no server running on /private/tmp/tmux-501/default"

Terminal log: (openAI) Mustafas-MacBook-Pro:universe-starter-agent mustafafaisal$ python train.py --num-workers 2 --env-id PongDeterministic-v3 --log-dir /tmp/pong Executing the following commands: mkdir -p /tmp/pong echo /Users/mustafafaisal/anaconda/bin/python train.py --num-workers 2 --env-id PongDeterministic-v3 --log-dir /tmp/pong > /tmp/pong/cmd.sh kill $( lsof -i:12345 -t ) > /dev/null 2>&1 kill $( lsof -i:12222-12224 -t ) > /dev/null 2>&1 tmux kill-session -t a3c tmux new-session -s a3c -n ps -d bash tmux new-window -t a3c -n w-0 bash tmux new-window -t a3c -n w-1 bash tmux new-window -t a3c -n tb bash tmux new-window -t a3c -n htop bash sleep 1 tmux send-keys -t a3c:ps 'CUDA_VISIBLE_DEVICES= /Users/mustafafaisal/anaconda/bin/python worker.py --log-dir /tmp/pong --env-id PongDeterministic-v3 --num-workers 2 --job-name ps' Enter tmux send-keys -t a3c:w-0 'CUDA_VISIBLE_DEVICES= /Users/mustafafaisal/anaconda/bin/python worker.py --log-dir /tmp/pong --env-id PongDeterministic-v3 --num-workers 2 --job-name worker --task 0 --remotes 1' Enter tmux send-keys -t a3c:w-1 'CUDA_VISIBLE_DEVICES= /Users/mustafafaisal/anaconda/bin/python worker.py --log-dir /tmp/pong --env-id PongDeterministic-v3 --num-workers 2 --job-name worker --task 1 --remotes 1' Enter tmux send-keys -t a3c:tb 'tensorboard --logdir /tmp/pong --port 12345' Enter tmux send-keys -t a3c:htop htop Enter

no server running on /private/tmp/tmux-501/default Use tmux attach -t a3c to watch process output Use tmux kill-session -t a3c to kill the job Point your browser to http://localhost:12345 to see Tensorboard

ghost commented 6 years ago

I think that message is shown because you haven't create a tmux session with the settings before(No saved sessions).

dtcarls commented 6 years ago

Run the command again and it should be gone if it concerns you.

kevinkicho commented 6 years ago

I have the same issue. Could someone advise? (0) ps- kevin@kevinmalverns:~/Documents/universe-starter-agent$ CUDA_VISIBLE_DEVICES= /home/kevin/anaconda2/envs/universe-starter-agent/bin/python3 worker.py --log-dir /tmp/pong --env-id PongDeterministic-v4 --num-workers 2 --job-name ps Traceback (most recent call last): File "worker.py", line 3, in <module> import go_vncdriver ImportError: No module named 'go_vncdriver' (1) w-0 kevin@kevinmalverns:~/Documents/universe-starter-agent$ CUDA_VISIBLE_DEVICES= /home/kevin/anaconda2/envs/universe-starter-agent/bin/python3 worker.py --log-dir /tmp/pong --env-id PongDeterministic-v4 --num-workers 2 --job-name worker --task 0 --remotes 1 Traceback (most recent call last): File "worker.py", line 3, in <module> import go_vncdriver ImportError: No module named 'go_vncdriver' (2) w-1 kevin@kevinmalverns:~/Documents/universe-starter-agent$ CUDA_VISIBLE_DEVICES= /home/kevin/anaconda2/envs/universe-starter-agent/bin/python3 worker.py --log-dir /tmp/pong --env-id PongDeterministic-v4 --num-workers 2 --job-name worker --task 1 --remotes 1 Traceback (most recent call last): File "worker.py", line 3, in <module> import go_vncdriver ImportError: No module named 'go_vncdriver' (3) tb 'kevin@kevinmalverns:~/Documents/universe-starter-agent$ tensorboard --logdir /tmp/pong --port 12345 TensorBoard 0.1.8 at http://kevinmalverns:12345 (Press CTRL+C to quit) ' This weird, because I already have fixed this problem before. I am running OpenAI_Game_Bot_Live_stream https://github.com/llSourcell/OpenAI_Game_Bot_Live_stream fine. Thanks for your attention on this.