fast-neural-style
fast-neural-style copied to clipboard
Training installation instructions vs Ubuntu 14.04.5
Hi. Following https://github.com/jcjohnson/fast-neural-style/blob/master/doc/training.md on a Ubuntu 14.04.5 system, I noticed a few things.
- missing
sudo apt-get install python-virtualenv
step - the
pip install -r requirements.txt
step ran against someUnicodeDecodeError: 'ascii' codec can't decode ...
issue; re-starting withLC_ALL=C LANG=C
helped (ordinarily set toen_GB.utf8
) - apparently installing numpy through the
requirements.txt
is unreliable, google search suggests that other projects have similar problems; installing it beforehand in the virtual environment withpip install numpy
helped.
Thanks for this! Ran into the same problems ^_^
Same! Brilliant!