I'm unable to install 'pdfplumber' - pdfplumber

Getting this error message "FileNotFoundError: [WinError 2] The system cannot find the file specified" when I tried to install plumber using '!pip install pdfplumber'.

Related

getting error while installing twilio using pip

ERROR: Could not install packages due to an EnvironmentError: [Errno 2] No such file or directory: 'C:\Users\krish\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\twilio\rest\api\v2010\account\sip\domain\auth_types\auth_calls_mapping\pycache\auth_calls_credential_list_mapping.cpython-38.pyc'
please refer this and explain we cant answer by just watching error learn how to ask on stackoverflow how to ask question

How to manually download brew package for installation?

Being in China means sometimes you just can't upgrade brew packages via brew upgrade it would run into error as such:
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to cli-assets.heroku.com:443
Error: An exception occurred within a child process:
DownloadError: Failed to download resource "heroku"
Download failed: https://cli-assets.heroku.com/heroku-v7.18.10/heroku-v7.18.10.tar.xz
I used to download these failed packages to ~/Library/Caches/Homebrew and then run the command again but this seems to work no longer after brew changed its cache structure for the better or worse (worse for me apparently).
What can I do now if I want to keep using brew to upgrade all my packages?
After I tried your method, this is the error that pops up:
==> Upgrading heroku/brew/heroku
==> Installing dependencies for heroku/brew/heroku: heroku/brew/heroku-node
==> Installing heroku/brew/heroku dependency: heroku/brew/heroku-node
==> Downloading https://cli-assets.heroku.com/homebrew/node-11.3.0.tar.xz
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to cli-assets.heroku.com:443
Error: An exception occurred within a child process:
DownloadError: Failed to download resource "heroku-node"
Download failed: https://cli-assets.heroku.com/homebrew/node-11.3.0.tar.xz
Also, say if I download go from https://dl.google.com/go/go1.11.4.src.tar.gz and rename it to go--git, which is the output of brew --cache go, but it still failed the installation.
fatal: unable to access 'https://go.googlesource.com/tools.git/': Failed to connect to go.googlesource.com port 443: Operation timed out
Error: An exception occurred within a child process:
DownloadError: Failed to download resource "go--gotools"
Failure while executing; `git clone --branch release-branch.go1.11 https://go.googlesource.com/tools.git /Users/aero/Library/Caches/Homebrew/go--gotools--git` exited with 128. Here's the output:
Cloning into '/Users/aero/Library/Caches/Homebrew/go--gotools--git'...
fatal: unable to access 'https://go.googlesource.com/tools.git/': Failed to connect to go.googlesource.com port 443: Operation timed out
If I run brew --cache go--gotools, it will say Error: No available formula with the name "go--gotools"
If, for example, you want to upgrade Gradle, you can find the location and the name of the cached file expected by Homebrew with:
brew --cache gradle
You will obtain:
/Users/myself/Library/Caches/Homebrew/downloads/ae76f5a0a19f5c141d5ee602a2ecb45011393fbba2206f3a960599d7bba92b9b--gradle-5.0-all.zip
Extract the url of the zip file from:
brew edit gradle
Download the file and rename it as in the output of brew --cache
You can then upgrade Gradle even offline with:
brew upgrade gradle
Depending on formulas, you will have to manually install all their dependencies.
If you use the -v option of brew upgrade or brew install or whichever command you used that needs to download the file, it will give you the output file where the downloaded file would have gone. You can then download your file manually to this place.

Phalcon php installation error: download failed

I'm trying to download and install phalconphp using Homebrew on my Mac (Sierra). I’m getting this error:
curl: (22) The requested URL returned error: 404 Not Found
Error: Download failed: https://homebrew.bintray.com/bottles-portable/portable-ruby-2.3.3.leopard_64.bottle.1.tar.gz
Things I did:
Reinstalled Homebrew
brew update
Tried to download portable-ruby-2.3.3.leopard_64.bottle.1.tar.gz (result: This site can’t be reached)
Any idea what is the problem? :/

Ros jade on Mac OS X El Capitan

I am trying to install ROS Jade on Mac OS X El Capita. I am following this instructions set for Homebrew.
I am able to initialize the ROS package but when I try to install the ROS package using the command
rosdep install --from-paths src --ignore-src --rosdistro jade
i get the following error message
executing command [brew install uuid]
==> Installing uuid from ros/deps
==> Downloading http://gnome-build-stage-1.googlecode.com/files/uuid-1.6.2.tar.gz
curl: (52) Empty reply from server
Error: Failed to download resource "uuid"
Download failed: http://gnome-build-stage-1.googlecode.com/files/uuid-1.6.2.tar.gz
ERROR: the following rosdeps failed to install
homebrew: command [brew install uuid] failed
If anyone has run into this error please let me know a way to install uuid on mac
or any other way of installing ROS on mac os x.
Thanks in advance.
I faced the same issue, but after running the command
$ rosdep init
something changed. Now I am stacked on the package libogre-dev, that is missing. I hope it could be helpful.

include(OAuth.php): failed to open stream: No such file or directory error in Yiidropbox extension

When I tried to run
$dropbox = Yii::app()->dropbox;
as mentioned in http://www.yiiframework.com/extension/yiidropbox/#hh1 , I am getting the error include(OAuth.php): failed to open stream: No such file or directory . What is causing this error?
You are missing the PHP OAuth extension. You can install it through PECL or maybe even as a package (depends on your operating system). For example on Ubuntu you would
sudo apt-get install liboauth-php

Resources