Just starting out with Prefect and building a POC ...
# ask-community
c
Just starting out with Prefect and building a POC for my company which currently has no MLOps in place. This is my first try at building a flow. I would add I am a Data Scientist not an engineer. https://github.com/fjord-prefect/ModelOps-with-Prefect One question for you guys. Built this on windows; however, when I pull to my ubuntu machine I'm getting what I'm assuming are python and prefect path issues due to Linux/docker requiring me to use sudo? I can register the flow it just hangs in submitted state and I get an error in the agent logs that I have attached. I'm assuming it's something with sudo paths and docker, python and prefect. Any suggestions?
z
Hey @Connor Campbell -- looks like you're running into https://github.com/PrefectHQ/server/issues/25 which is resolved by https://github.com/PrefectHQ/prefect/pull/4714 and will be in our next release
You can install the
master
branch with
pip install prefect@git+<https://github.com/PrefectHQ/prefect@master#egg=prefect>
You may also downgrade to 0.14.17 instead
c
Awesome Michael thank you! I never would have found that.