I would like to create a system using OpenCV 2.4.9 on Raspberry Pi 3 Model B, but can I use it the same way by copying and moving OpenCV folders that are already installed on another Raspberry Pi instead of using LXterminal?
opencv raspberry-pi
pip install
is not recommended to copy and use, as some settings may be changed depending on the environment.
Basically, it is better to keep track of the packages required in requirements.txt.If not, you can create requirements.txt
with the following command:
pip freeze>requirements.txt
You can then install packages in bulk using requirements.txt.
pip install-r requirements.txt
If you have a package that is not Wheeled and you do not want to create a compilation environment on the machine you want to install, you can create a Wheel version on another machine in the same OS.In that case, do the following in the folder where setup.py is located in the source of the package:
python setup.py bdist_wheel
917 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
620 Uncaught (inpromise) Error on Electron: An object could not be cloned
573 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
574 Who developed the "avformat-59.dll" that comes with FFmpeg?
© 2024 OneMinuteCode. All rights reserved.