Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Take A QuizChallenge yourself and boost your learning! Start the quiz now to earn credits.
Take A QuizUnlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Take A QuizGeneral Tech Bugs & Fixes 3 years ago
User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.
When installing conan:
sudo apt-get install mosquitto cmake python python-pip && python -m pip install conan
the later half:
python -m pip install conan
should be installed using sudo:
sudo python -m pip install conan
If this doesn't work, try uninstalling conan:
pip uninstall conan
and then reinstall:
sudo pip install conan
Currently my RPi is running the configure.sh script successfully.
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
manpreet
Best Answer
3 years ago
I'm using a RPI 3B
uname -areturns:4.14.98-v7+ #1200 armv71OS is
stretchgcc version is 4.9.3I'm attempting to setup my RPi to be a BLE gateway as per this project on hackster.io. I executed the first few commands:
git clone --recurse-submodules https://github.com/Wolkabout/WolkGateway.gitsudo apt-get install mosquitto cmake python python-pip && python -m pip install conanThe Bash Script
then I ran a bash script (configure.sh) that contains the following:
The Output of the Bash Script
the terminal outputs:
line 21 is the line with
conan.Then I get a CMake error:
Maybe Conan Isn't in My
PATHMy thought was that the command
conanisn't in my$PATHso I checkedPIP:this gave me the location of
conan:I then added that path to my
$PATH:This didn't work, causing the same error when re-running the aforementioned bash script (configure.sh)
Installing Conan From Source
I went here and installed
conanfrom source:The Python Script to Add Conan to my
PATH