Giter Club home page Giter Club logo

Comments (2)

trampgeek avatar trampgeek commented on August 13, 2024

Are you using jobeinabox with CodeRunner or in some other context? If the latter, I'd be interested to know about it.

Creating a permanently writable directory for matplotlib is one workaround but would open a security hole (students could share info via that directory) and would need a housekeeping task to clean up the contents after each run.

Our standard workaround for this problem within CodeRunner is the following prefix code (after importing os):

    if 'MPLCONFIGDIR' not in os.environ or os.environ['MPLCONFIGDIR'].startswith('/home'):
        import tempfile
        os.environ['MPLCONFIGDIR'] = tempfile.mkdtemp()

Our template executes that code prior to an exec of the student answer. I possibly should consider moving this code into Jobe somehow. As you've discovered it's a bit tricky to configure environment variables on Jobe, as the runguard program I use to execute code cleans the environment before the run to plug various potential security holes.

from jobeinabox.

jamboNum5 avatar jamboNum5 commented on August 13, 2024

Hi Richard, we'll take a look at the fix you mentioned.

We have been testing jobeinabox with Coderunner on Moodle. Just some small customisations to get additional python modules into the container.

Thanks for the suggestion,
James

from jobeinabox.

Related Issues (11)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.