The error is pretty clear. The file hello.py
is not an executable file. You need to specify the executable:
subprocess.call(['python.exe', 'hello.py', 'htmlfilename.htm'])
You’ll need python.exe
to be visible on the search path, or you could pass the full path to the executable file that is running the calling script:
import sys subprocess.call([sys.executable, 'hello.py', 'htmlfilename.htm'])
Related Posts:
- How to execute a program or call a system command?
- Python3: ImportError: No module named ‘_ctypes’ when using Value from module multiprocessing
- OSError: [Errno 8] Exec format error
- subprocess.check_output return code
- takes 1 positional argument but 2 were given
- Making a collatz program automate the boring stuff
- What can lead to “IOError: [Errno 9] Bad file descriptor” during os.system()?
- How to install PyGame on Python 3.4?
- Python Subprocess: Too Many Open Files
- No module named ‘openpyxl’ – Python 3.4 – Ubuntu
- No module named utils error on compiling py file
- Running shell command and capturing the output
- Import Error: No module named numpy
- bash: pip: command not found
- Function for Factorial in Python
- TypeError: a bytes-like object is required, not ‘str’ when writing to a file in Python3
- Writing a pandas DataFrame to CSV file
- Purpose of “%matplotlib inline”
- How do I update Anaconda?
- TypeError: ‘str’ object is not callable (Python)
- Dijkstra’s algorithm in python
- DataFrame constructor not properly called! error
- How to prevent errno 32 broken pipe?
- AttributeError: ‘module’ object has no attribute ‘urlopen’
- Pandas group-by and sum
- Python pandas groupby aggregate on multiple columns, then pivot
- Factorial in numpy and scipy
- No handles with labels found to put in legend
- Python Traceback (most recent call last)
- import opencv vs import cv2
- No module named ‘psycopg2’
- How to activate an Anaconda environment
- Caesar Cipher Function in Python
- Python: maximum recursion depth exceeded while calling a Python object
- How to pip or easy_install tkinter on Windows
- TypeError: ‘list’ object cannot be interpreted as an integer
- How do I install the yaml package for Python?
- Python: Array v. List
- What is key=lambda
- __init__() takes 1 positional argument but 2 were given
- Python function global variables?
- How can I convert a character to a integer in Python, and viceversa?
- What’s the difference between %s and %d in Python string formatting?
- initialize a numpy array
- error: Unable to find vcvarsall.bat
- AttributeError: Module Pip has no attribute ‘main’
- django:django.core.exceptions.AppRegistryNotReady: Apps aren’t loaded yet
- Can I force pip to reinstall the current version?
- Removing pip’s cache?
- Improve subplot size/spacing with many subplots in matplotlib
- Can I run Keras model on gpu?
- How to check whether a pandas DataFrame is empty?
- Add single element to array in numpy
- ‘Can’t set attribute’ with new-style properties in Python
- How to check if a string is a substring of items in a list of strings?
- How to index into a dictionary?
- Add a new item to a dictionary in Python
- reducing number of plot ticks
- How can I add new keys to a dictionary?
- Convert pandas data frame to series
- Decorators with parameters?
- How do I get a python program to do nothing?
- Difference between scikit-learn and sklearn
- How can I create a text input box with Pygame?
- How can I print variable and string on same line in Python?
- SettingWithCopyWarning even when using .loc[row_indexer,col_indexer] = value
- Append a tuple to a list – what’s the difference between two ways?
- No module named Image
- How to fix “TypeError: len() of unsized object”
- ValueError: Unknown projection ‘3d’ (once again)
- Substitution Cipher Python
- Good ways to “expand” a numpy ndarray?
- Python data structure sort list alphabetically
- TypeError: ‘numpy.float64’ object does not support item assignment
- TypeError: unsupported format string passed to list.__format__
- Getting “socket.error: [Errno 61] Connection refused” python paramiko
- python setup.py uninstall
- Create numpy matrix filled with NaNs
- python pandas remove duplicate columns
- What is the difference between __str__ and __repr__?
- How often does python flush to a file?
- How to open every file in a folder
- Python iteration over non-sequence
- How do I convert a string to a double in Python?
- _csv.Error: field larger than field limit (131072)
- How do I rotate an image around its center using Pygame?
- How to completely uninstall python 2.7.13 on Ubuntu 16.04
- Calculate weighted average using a pandas/dataframe
- Telling Python to save a .txt file to a certain directory on Windows and Mac
- Spell Checker for Python
- TypeError: coercing to Unicode: need string or buffer, int found
- Simplify Chained Comparison
- How to get POSTed JSON in Flask?
- How to fix SSL issue SSL_CTX_use_certificate : ca md too weak on Python Zeep
- Paramiko’s SSHClient with SFTP
- Package libffi was not found in the pkg-config search path REDHAT6.5
- Line is too long. Django PEP8
- TypeError: zip argument #2 must support iteration
- CS231n: How to calculate gradient for Softmax loss function?
- How to create a new database using SQLAlchemy?