I've been trying to set up my work environment so I can attempt the Beeware tutorial.
https://voc.readthedocs.io/en/latest/background/install.html
I'm following the steps of this installation tutorial using Bash Shell in Windows 8 with Python 3.7. I installed all the relevant software and configured the environmental variables etc.
The problem I encounter happens when I try to create the JAR support file inside my activated venv:
$ . env/Scripts/activate
(env) $ cd voc
(env) $ pip install -e .
(env) $ ant java ``` -- at this line of code the shell appears to be endlessly stuck in operation as follows:
(env) $ ant java
Buildfile: C:\Users\XXXX\tutorial\voc\build.xml
java:
compile:
compile_stdlib:
[exec] Cloning into 'ouroboros'...
[exec] Updating files: 17% (340/1941)
I've left this running for more than an hour and it shows no sign of progress.
I'm pretty sure that running the script through the venv is causing the problem because when I don't use any venv the process runs successfully in just over a minute.**
When I input the cd
command, the processes don't appear to change over time either.
I've also tried disabling my windows defender to improve CPU performance with no luck.
Any suggestions are what I can do to get this working in the Venv?
Thanks in advance
You might want to try with a different environment e.g. on a docker container.
Here is a report of a try with Ubuntu 18.04 LTS as of 2019-11-29. I followed https://voc.readthedocs.io/en/latest/background/install.html
Python 3.7 is used instead of the default 3.6.
Java 1.8
ant as installed by Ubuntu package manager:
I had to install the python 3.7 venv see How to install python3.7 and create a virtualenv with pip on Ubuntu 18.04?
cloning the repository
activating the virtual environment
and now finally running the ant command that gave you trouble: