Created
February 6, 2020 11:39
-
-
Save jboynyc/1faa5dc4e278d5b6284795f780d22764 to your computer and use it in GitHub Desktop.
using `guix environment` as a shebang
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S guix environment --ad-hoc python python-pandas python-numpy -- python3 | |
import pandas as pd | |
def main(): | |
df = pd.util.testing.makeDataFrame() | |
print(df.T) | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment