You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to build Roam from master branch, I got this error :
$ make build
python setup.py clean
setup.py:209: SyntaxWarning: "is" with a literal. Did you mean "=="?
if os.name is 'nt':
Traceback (most recent call last):
File "setup.py", line 286, in <module>
include_files = get_data_files()
File "setup.py", line 148, in get_data_files
with open(versiontext, 'w') as f:
FileNotFoundError: [Errno 2] No such file or directory: 'src\\roam/version.txt'
make: *** [Makefile:10: clean] Error 1
Path is written in Windows format in setup.py line 148 : versiontext = os.path.join(r"src\roam", "version.txt")
Antislash make related error. Changing from antislash to slash remove error but os is still detected as Windows and fail later in other error.
OS : Archlinux
$ pacman -Q python
python 3.8.1-1
Any hints on how to build ? Documentation outdated ?
The text was updated successfully, but these errors were encountered:
kikislater
changed the title
Build error under Linux (version.txt)
Linux OS not detected
Jan 3, 2020
Hi,
Trying to build Roam from master branch, I got this error :
Path is written in Windows format in setup.py line 148 :
versiontext = os.path.join(r"src\roam", "version.txt")
Antislash make related error. Changing from antislash to slash remove error but os is still detected as Windows and fail later in other error.
OS : Archlinux
$ pacman -Q python
python 3.8.1-1
Any hints on how to build ? Documentation outdated ?
The text was updated successfully, but these errors were encountered: