Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

CodeChecker on FreeBSD

38 views
Skip to first unread message

woodb...@gmail.com

unread,
Feb 5, 2017, 1:11:30 PM2/5/17
to
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

Thanks in advance.


Brian
Ebenezer Enterprises - In G-d we trust.
http://webEbenezer.net

Christian Gollwitzer

unread,
Feb 5, 2017, 1:36:41 PM2/5/17
to
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

0 new messages