-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: can only concatenate str (not "type") to str
instead of actual error
#3102
Comments
I get this error by starting
and
directly after running
I am not sure, what I can do |
The issue is a problem with a dependency in pipenv. You can fix this by installing from the working update until the release is out: |
Hi @techalchemy Could you look at this issue again? I still get this issue when I installed latest master branch with commit e3ee806. Thanks.
|
Yikes. Any chance you can print or log the type? I’m guessing it’s an EOF still? |
@techalchemy Hi, I found it is |
Hi , When I am trying to build pypika query for casting I am also getting same error, The code snippet will be(TypeError: can only concatenate str (not "type") to str) col_name = 'fn.Cast(' + aliasName + '.' + columnNamevalue + ','+ SqlTypes +'.'+ castTypevalue+')' Can any one help on this |
Issue description
In some cases,
pipenv
outputsTypeError: can only concatenate str (not "type") to str
instead of the actual error (or after printing out the actual error). It faces an error while handling the actual error.Steps to replicate
Set WORKON_HOME to somewhere that current user doesn't have permission for writing to. Example:
WORKON_HOME=/opt/ pipenv install
I encountered the issue on the latest source code from the Github.
The text was updated successfully, but these errors were encountered: