pip install dronekit --upgrade does not work - dronekit-python

I am trying to upgrade my Dronekit 2.0.0rc.4
As of 10 minutes ago, they are up to 2.0.0cr.10
I need this version because apparently the older versions don't have a way to adjust baud rate when using 3DR radios.
I try
pip install dronekit --upgrade
but get message that I am already up-to-date.
Please advise.
Windows 8.1
Thanks!

Try pip install dronekit -UI. It ignores installed versions and any "apparent" requirements are in your environment. I also recommend pip uninstall dronekit; pip install dronekit as the easiest mechanism to avoid pip woes.

try
pip install --pre dronekit

Related

Pip install on Spyder

I am using Spyder IDE and I want to istall pywin32. I tried:
pip install pywind32 !pip install pywind32' %pip install pywind32`. Nothing works and I keep receiving a 'invalid syntax' error.
Does anyone know what the syntax is to install packages on Spyder ?
Thank you

Error while installing snowflake connector for python

I am trying to connect snowflake using python, I tried to install "Snowflake connector" for python using below command:
pip install snowflake-connector-python
https://docs.snowflake.com/en/user-guide/python-connector.html
During installation I am facing following error:
ERROR: Could not build wheels for pyarrow which use PEP 517 and cannot be installed directly
Even I faced similar error while installing snowflake connector for python and I used below command and issue got resolved:
python3 -m pip install --no-use-pep517 snowflake-connector-python
Python 3 I have no issue. Only with Python 2.7.
Try this if you are using python3. It is the documenation.
sudo python3 -m pip install setuptools-rust
sudo python3 -m pip install wheel
sudo python3 -m pip install -r https://raw.githubusercontent.com/snowflakedb/snowflake-connector-python/v2.3.9/tested_requirements/requirements_36.reqs
sudo python3 -m pip install snowflake-connector-python==2.3.9

How do I install the latest version of pytest, coexisting with an older version?

Here is my current version
% pytest --version
This is pytest version 4.6.9, imported from /home/abc/.local/lib/python2.7/site-packages/pytest.pyc
Per https://docs.pytest.org/en/latest/announce/index.html, the latest version is pytest-5.4.1.
I ran % pip install --upgrade pytest but my pytest version still remains as 4.6.9. Ideally, I'd like to be able to install the latest version separately, something like pytest3.
I have both python 2.x and 3.x on my machine.
Have you tried uninstalling pytest
python3 windows
pip uninstall pytest
python3 linux
pip3 uninstall pytest
then install again
pip install pytest
or
download whl file from
https://pypi.org/project/pytest/#files
download the pytest-5.4.1-py3-none-any.whl
package.
then go to terminal or cmd for windows.
commands:
pip3 uninstall pytest
cd Desktop
pip3 install pytest-5.4.1-py3-none-any.whl
or
pip uninstall pytest
cd Desktop
pip install pytest-5.4.1-py3-none-any.whl
please tell me if you want me to explain more

How to install node.js & angular.js on a google instance

How do i install node.js & angular.js on a google instance running CentOS7
I can't find Instructions that work. The instance has no GUI installed
Regards
You can access CentOS terminal and download dependencies, like in freshly installed Ubuntu we use apt-get install npm and apt-get install node to install npm and node and then with npm we can install further packages.
Use terminal for this, check this if this helps you How To Install Node.js on a CentOS 7 server
Once npm install is done, you can install angularJS or any other npm packages.
Hope it helps you

oracle 11g express edition installation failed in ubuntu 16.04

i try to install oracle express edition to Ubuntu 16.04 but
package alien is not installing i tried everything but nothing worked it continuously giving this error..
The following packages have unmet dependencies:
alien : Depends: debhelper (>= 7) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Error
Try to install with aptitude:
sudo aptitude install alien
if you dont have installed aptitude than do:
sudo apt-get install aptitude

Resources