Форум сайта python.su
Всем привет.
Имею такой скрипт, просто для проверки работы скомпиленных скриптов на кластере
#! /usr/bin/ python3 # -*- coding: utf-8 -*- def print_hi(name): # Use a breakpoint in the code line below to debug your script. print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint. # Press the green button in the gutter to run the script. if __name__ == '__main__': print_hi('PyCharm')
python3 ./dist/main File "./dist/main", line 1 SyntaxError: Non-UTF-8 code starting with '\xaf' in file ./dist/main on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
Отредактировано vval_s (Авг. 16, 2024 09:51:42)
Офлайн
Попробуй вот этот скомпилировать
#!/usr/bin/env python3
def print_hi(name):
# Use a breakpoint in the code line below to debug your script.
print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint.
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
print_hi('PyCharm')
Офлайн
py.user.nextДа пробовал так. Релультат тот же.
Попробуй вот этот скомпилировать
python3 test_compl File "test_compl", line 1 SyntaxError: Non-UTF-8 code starting with '\xaf' in file test_compl on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
Офлайн
Сделай новую директорию.
Там сделай файл script.py .
В файл script.py запиши ровно одну строку
print(1, 'Hello', sep='x')
Офлайн
py.user.nextблин проблема была в том что я указывал интерпретатор перед запуском скрипта. а это ж скомпиленный скрипт, по сути exeшник.
Сделай новую директорию.Там сделай файл script.py .В файл script.py запиши ровно одну строку
python3 <имя_скрипта>
./<имя скрипта>
Офлайн