Skip to content
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

venv activate bash script has wrong line endings in Windows #76632

Closed
Kevin mannequin opened this issue Dec 30, 2017 · 9 comments
Closed

venv activate bash script has wrong line endings in Windows #76632

Kevin mannequin opened this issue Dec 30, 2017 · 9 comments
Labels
3.8 (EOL) end of life 3.9 only security fixes 3.10 only security fixes OS-windows type-bug An unexpected behavior, bug, or error

Comments

@Kevin
Copy link
Mannequin

Kevin mannequin commented Dec 30, 2017

BPO 32451
Nosy @pfmoore, @tjguk, @bitdancer, @embray, @zware, @eryksun, @zooba, @StingyJack

Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

Show more details

GitHub fields:

assignee = None
closed_at = None
created_at = <Date 2017-12-30.04:13:49.296>
labels = ['3.10', 'type-bug', '3.8', '3.9', 'OS-windows']
title = 'venv activate bash script has wrong line endings in Windows'
updated_at = <Date 2021-03-17.19:57:39.007>
user = 'https://bugs.python.org/Kevin'

bugs.python.org fields:

activity = <Date 2021-03-17.19:57:39.007>
actor = 'eryksun'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Windows']
creation = <Date 2017-12-30.04:13:49.296>
creator = 'Kevin'
dependencies = []
files = []
hgrepos = []
issue_num = 32451
keywords = []
message_count = 8.0
messages = ['309215', '309258', '339985', '340038', '340052', '340065', '340272', '388962']
nosy_count = 9.0
nosy_names = ['paul.moore', 'tim.golden', 'r.david.murray', 'erik.bray', 'zach.ware', 'eryksun', 'steve.dower', 'Kevin', 'astanton1978']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue32451'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10']

@Kevin
Copy link
Mannequin Author

Kevin mannequin commented Dec 30, 2017

attempts from within cygwin:

  1. The Posix way:
$ python -m venv taco
$ cd taco
$ source bin/activate
-bash: $'\r': command not found
-bash: Scripts/activate: line 4: syntax error near unexpected token `$'{\r''
'bash: Scripts/activate: line 4: `deactivate () {
  1. The windows way:
$ python -m venv taco
$ cd taco
$ /full/path/to/venv/taco/scripts/activate.bat
$
  1. the only solution from cygwin (still not 100% functional):
$ python -m venv taco
$ cd taco
$ cd Scripts
$ cmd
C:\taco\Scripts\> activate.bat

(taco) C:\taco\Scripts\>

HOWEVER. when running "pip freeze" in number 3 it returns the system packages despite the "include-system-site-packages = False" in pyvenv.cfg
When #3 is run inside command prompt "pip freeze" returns nothing correctly.

Come on guys, please don't make me use command prompt or powershell.

@Kevin Kevin mannequin added the type-bug An unexpected behavior, bug, or error label Dec 30, 2017
@bitdancer
Copy link
Member

cygwin in not currently fully supported (there are people working on it, though). Can you determine if this is a bug in cygwin's bash support, or something else? It certainly works with bash shell on unix. I would presume that from cygwin one would want the posix way to work, and that it should be possible.

@StingyJack
Copy link
Mannequin

StingyJack mannequin commented Apr 11, 2019

I dont think this is a Cygwin only problem, as this is happening to me when running WSL (Windows subsystem for Linux). I can run Scripts\Activate.ps1 from powershell, Scripts\activate.bat from cmd, but running scripts/activate from wsl reports this same error.

@eryksun
Copy link
Contributor

eryksun commented Apr 12, 2019

Why is the bash/zsh "activate" script getting distributed with CRLF line endings? Apparently Windows builds of bash (e.g. git-bash) can handle CRLF line endings, but Cygwin bash cannot.

As to Linux bash in WSL, the activate script from a virtual environment created by Windows Python can't be used anyway. It modifies $PATH using a DOS path like "C:\taco" as opposed to a WSL path like "/mnt/c/taco".

when running "pip freeze" in number 3 it returns the system
packages despite the "include-system-site-packages = False"
in pyvenv.cfg

The 3rd attempt is just running activate.bat from a CMD shell. That should work, unless you exit out of CMD back to bash. Anyway, check where.exe pip after activating. It should find "C:\taco\Scripts\pip.exe" first.

@eryksun eryksun added OS-windows 3.7 (EOL) end of life 3.8 (EOL) end of life labels Apr 12, 2019
@zooba
Copy link
Member

zooba commented Apr 12, 2019

It probably just needs a gitattributes fix so it doesn't get converted when cloned to make the release build.

This is assuming that in all these cases people are installing Python for Windows and trying to use it from a non-Windows shell (both WSL and Cygwin have their own "native" Python builds that presumably work). I can't tell if there's something else going on here.

@eryksun
Copy link
Contributor

eryksun commented Apr 12, 2019

This is assuming that in all these cases people are installing Python
for Windows and trying to use it from a non-Windows shell (both WSL
and Cygwin have their own "native" Python builds that presumably
work).

It should work from Cygwin and MSYS2 since they support DOS paths in $PATH. I don't have Cygwin installed, but I tried MSYS2 bash and Git bash, and it worked fine, even with CRLF line endings. Apparently only Cygwin bash has a problem with CRLF line endings.

The issue with using Windows Python in this case is that the terminals for these environments emulate Unix PTYs with named pipes (e.g. "msys-0123456789abcdef-pty0-from-master" for stdin and "msys-0123456789abcdef-pty0-to-master" for stdout and stderr). Thus isatty() is false, and interactive mode has to be forced with the -i command-line option.

@embray
Copy link
Contributor

embray commented Apr 15, 2019

Coincidentally I just encountered this myself when trying to activate a venv created by Python for Windows while in a Cygwin shell. Indeed, bash for Cygwin is just like bash anywhere else, and considers it a syntax error to encounter unexpected CR's.

Alas, venv creates <path>/<to/<env>/Scripts/activate with CRLFs. After running dos2unix on it, this script can be sourced from Cygwin and otherwise works fine.

The issue that arises with interactive mode is a known issue not specific to Python or venv. It can also be worked around by running python with winpty.

@eryksun
Copy link
Contributor

eryksun commented Mar 17, 2021

The POSIX "Lib/venv/scripts/common/activate" script needs a line-ending exception in ".gitattributes":

https://github.com/python/cpython/blob/master/.gitattributes

@eryksun eryksun added 3.9 only security fixes 3.10 only security fixes and removed 3.7 (EOL) end of life labels Mar 17, 2021
@eryksun eryksun changed the title python -m venv activation issue when using cygwin on windows venv activate bash script has wrong line endings in Windows Mar 17, 2021
@ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
@daytonb
Copy link

daytonb commented Apr 21, 2023

I was going to fix this issue, because I just ran into it this week while helping a co-worker. However, it's already been fixed in main 😃.

The need to adjust .gitattributes was noted in issue #103088 and closed by merge request #103591, so this issue can be closed now.

@zware zware closed this as completed Apr 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3.8 (EOL) end of life 3.9 only security fixes 3.10 only security fixes OS-windows type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

No branches or pull requests

6 participants