ConnorP13
ConnorP13

Reputation: 11

How to solve a permission error when running TabPy in Powershell Prompt

It says to enter "tabpy" to run the server, but when I try to in the Anaconda Powershell Prompt it gives me a permission error:

(base) PS C:\> tabpy

...

return open(self.baseFilename, self.mode, encoding=self.encoding)

PermissionError: [Errno 13] Permission denied: 'C:\\tabpy_log.log'

Upvotes: 1

Views: 313

Answers (1)

Kendall
Kendall

Reputation: 1

Try running Anaconda Powershell Prompt as admin. For windows you can Shift + Right Click and run as administrator.

Make sure pip is up to date

python -m pip install --upgrade pip

and TabPy is installed on a supported version of python (3.9 - 3.12) per github page. https://github.com/tableau/TabPy

pip install tabpy

Upvotes: 0

Related Questions