Am 05.02.17 um 19:11 schrieb
woodb...@gmail.com:
> Has anyone gotten CodeChecker working on FreeBSD?
>
https://github.com/Ericsson/CodeChecker
>
> The "make venv" step fails for me.
>
> virtualenv -p /usr/bin/python2.7 venv && . venv/bin/activate && pip install -r .ci/basic_python_requirements
> /bin/sh: virtualenv: not found
>
"virtulenv" is a tool from the Python ecosystem. You can look if there
either is a BSD package for that (I don't use FreeBSD, so can't tell
what the command (emerge?) might be), or you can install it as a python
package using
pip install virtualenv
pip should come with python, or at least as a package on your system.
Christian