Open jhonatanramires opened 3 months ago
Hello @jhonatanramires,
Sorry for the delay, I was absent the last few days.
How can I resolve the 'qi/[~4]' package not being found? Is there a specific version of qi I should be using or a particular Conan remote I need to add?
libqi-python needs libqi. You need to clone libqi and then export the project recipe into your Conan cache, so that Conan may know how to build it. You can clone the libqi project in a local directory, checkout one of the qi-framework-v4.xxx
tags then export it with the command conan export <libqi_path>
.
Are there any Windows-specific configurations I need to set in Conan or CMake?
No, not that I know of, but I haven't really tested it. You might be our first tester here !
How should I specify the Visual Studio toolchain in the build process?
I think Conan can generate the appropriate CMake toolchain so that it points to your Visual Studio toolchain. That's my hypothesis anyway.
Are there any known issues with specific versions of dependencies on Windows?
Not that I know of.
Is there any additional setup required for building libqi-python on Windows that isn't mentioned in the README?
There might be additional steps regarding the build of a wheel for Windows, especially about shared libraries (DLL) that need to be embedded in the wheel. On Linux, this is done by the auditwheel
Python module, and on MacOS, this is done by the delocate
module. But there is no module for this on Windows.
Goal
I'm working on building libqi-python for Windows to expand its compatibility and make it more accessible for Windows users, particularly for NAO robot development.
Current Status
conan install . --build=missing -c tools.build:skip_test=true
.Steps Taken So Far
git clone --depth=1 --branch "master" https://github.com/aldebaran/libqi-python
.conan profile detect
Current Roadblock
When running the command:
I encounter the following error:
Questions
Additional Information
System Information
Thank you for your time and assistance with this issue. Any guidance or pointers would be greatly appreciated!