user7180132
user7180132

Reputation: 421

Python3/Windows: module 'os' has no attribute 'mkfifo'

I'm currently on Windows 10 using Python 3.6, and I've hit a snag on getting this following code to work which can be found here: https://github.com/Kautenja/gym-super-mario-bros/blob/master/gym_super_mario_bros/nes_env.py:

if not os.path.exists(self._pipe_in_name):
    os.mkfifo(self._pipe_in_name)

I'm looking at other questions,s and mkfifo is Linux. Is there an equivalent where I can open up that specific path from Windows without a headache?

Upvotes: 3

Views: 2356

Answers (0)

Related Questions