You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code assumes that if building on ubuntu then packages are in the directory dist-packages. This is not true if the user (me) is using venv, which puts things in site-packages instead. This is problematic because use of venv is common and is the standard way to create python environments. My current workaround is to hardcode correct search path in to the find_package line.
The text was updated successfully, but these errors were encountered:
XRT/src/python/pybind11/CMakeLists.txt
Lines 40 to 41 in 5d6c913
This code assumes that if building on ubuntu then packages are in the directory
dist-packages
. This is not true if the user (me) is usingvenv
, which puts things insite-packages
instead. This is problematic because use ofvenv
is common and is the standard way to create python environments. My current workaround is to hardcode correct search path in to thefind_package
line.The text was updated successfully, but these errors were encountered: