After following the official RTD installation tutorial for ubuntu18 I manage to do everything (even webhooks) until the point of building, for a project called test, where I get the following error:
python3.6 -mvirtualenv /home/myuser/readthedocs.org/user_builds/test/envs/latest
Followed by:
There must be only one argument: DEST_DIR (you gave /home/gcsuser/readthedocs.org/user_builds/test/envs/latest) Usage: virtualenv.py [OPTIONS] DEST_DIR
I haven't changed (nor I do know here) to change the DEST_DIR. The debug.log states exactly what's on the image
Here is the total log after clicking the "Build" Button:
Full log in here
If I run the command "python3.6 -mvirtualenv /home/myuser/readthedocs.org/user_builds/myprojecto/envs/latest" in the command line the result is the following:
(venv) myuser@lxgcsrtd01:~/readthedocs.org$ python3.6 -mvirtualenv /home/myuser/readthedocs.org/user_builds/myprojecto/envs/latest
Using real prefix '/usr'
Path not in prefix '/home/myuser/readthedocs.org/venv/include/python3.6m' '/usr'
New python executable in /home/myuser/readthedocs.org/user_builds/myprojecto/envs/latest/bin/python3.6
Not overwriting existing python scrip /home/myuser/readthedocs.org/user_builds/myprojecto/envs/latest/bin/python (you must use /home/myuser/readthedocs.org/user_builds/myprojecto/envs/latest/bin/python3.6)
Installing setuptools, pip, wheel... done. (venv)
myuser@lxgcsrtd01:~/readthedocs.org$
Looks like, as the error states, there are two argumets, yet I can't find any space in bettween the arguments, and if I copy paste it to the shell it won't throw any errors.